/* ===========================
   BORDE DEL MENU DE IDIOMA
=========================== */

/* Dropdown menu */
#lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 160px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  z-index: 1000;

  opacity: 0;
  transform: scale(0.95) translateY(-4px);
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Visible state */
#lang-menu.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}


/* Contenedor de Privacidad (ID de página 21) */
.elementor-21 {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #374151;
    line-height: 1.7;
}

/* Tarjeta contenedora */
.elementor-21 .elementor-widget-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Título Principal */
.elementor-21 .page-header {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    border-left: 6px solid #feb01a;
    padding-left: 20px;
}

/* Párrafos y texto introductorio */
.elementor-21 p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Títulos de sección (H3) */
.elementor-21 .wp-block-heading {
    color: #111827;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 8px;
}

/* Subtítulos (H4) */
.elementor-21 h4.wp-block-heading {
    font-size: 1.15rem;
    color: #4b5563;
    border-bottom: none;
    margin-top: 1.5rem;
}

/* Estilo para las Listas (Bullet points) */
.elementor-21 .wp-block-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.elementor-21 .wp-block-list li {
    margin-bottom: 0.75rem;
    position: relative;
    list-style: none;
}

.elementor-21 .wp-block-list li::before {
    content: "•";
    color: #feb01a;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

/* Resaltado de negritas */
.elementor-21 strong {
    color: #111827;
    font-weight: 600;
}

/* Enlaces y Contacto */
.elementor-21 a {
    color: #feb01a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.elementor-21 a:hover {
    border-bottom: 1px solid #feb01a;
    color: #d99212;
}

/* Responsive */
@media (max-width: 768px) {
    .elementor-21 .elementor-widget-container {
        padding: 25px;
    }
    .elementor-21 .page-header {
        font-size: 1.8rem;
    }
}